(struct draw_fringe_bitmap_params): Change member
authorKim F. Storm <storm@cua.dk>
Fri, 13 Feb 2004 23:29:23 +0000 (23:29 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 13 Feb 2004 23:29:23 +0000 (23:29 +0000)
bits from char to short to facilitate wider bitmaps.
(struct redisplay_interface): Fix prototype of define_fringe_bitmap
member.

src/dispextern.h

index ec6750086ea369a2c62c6c417f8925de6891fb84..fc27c6e185e89a603be68e11bc0b028d1dc7b5ca 100644 (file)
@@ -1641,7 +1641,7 @@ extern int face_change_count;
 struct draw_fringe_bitmap_params
 {
   int which;  /* enum fringe_bitmap_type */
-  unsigned char *bits;
+  unsigned short *bits;
   int wd, h, dh;
   int x, y;
   int bx, nx, by, ny;
@@ -2189,7 +2189,7 @@ struct redisplay_interface
                                  struct draw_fringe_bitmap_params *p));
 
   /* Define and destroy fringe bitmap no. WHICH.  */
-  void (*define_fringe_bitmap) P_ ((int which, unsigned char *bits,
+  void (*define_fringe_bitmap) P_ ((int which, unsigned short *bits,
                                    int h, int wd));
   void (*destroy_fringe_bitmap) P_ ((int which));